Conversation
- Replace template README with NemoClaw Community README - Add Apache 2.0 LICENSE and CONTRIBUTING.md - Add Brev launchable directory with TODO - Add sandbox image directories (sdg, cosmos, openclaw, simulation) - Prototype OpenClaw sandbox image (Dockerfile, startup script, README) - Add GitHub Actions workflow to build sandbox images on change
- sandboxes/base/: foundational image with Python 3.12, Node.js 22, gh, git, uv, networking tools, and sandbox/supervisor users - sandboxes/openclaw/: now builds FROM base, only adds openclaw-specific layers - Workflow: builds base first, then dependent sandboxes in parallel. When base changes, all downstream sandboxes are rebuilt. Passes BASE_IMAGE build-arg to dependent builds.
Uses a wildcard glob (policy.yaml*) so the COPY is a no-op when a child image doesn't include a policy file. Removes the explicit COPY from the openclaw Dockerfile since base now handles it automatically.
… builds On PRs the base image is not pushed to GHCR, so dependent sandbox builds cannot resolve the FROM reference. This spins up a local registry on PRs, builds the base image into it, and points BASE_IMAGE there. On main the existing GHCR flow is unchanged. PR builds also use single-platform (linux/amd64) for speed since they only validate the build.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
brev/directory with TODO for Brev launchablesandboxes/with subdirectories for sdg, cosmos, openclaw, and simulationbuild-sandboxes.yml) that detects changed sandbox directories and builds/pushes images to GHCR